טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי. ניהול התצוגה מתבצע בשפת הסימון Extensible Application Markup ) XAML

Size: px
Start display at page:

Download "טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי. ניהול התצוגה מתבצע בשפת הסימון Extensible Application Markup ) XAML"

Transcription

1 WPF-Windows Presentation Foundation Windows WPF טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי Client חכמים המשלב ממשקי משתמש,תקשורת ומסמכים..(Behavior) לבין התנהגותו (User Interface) מפרידה בין תצוגת הממשק WPF ניהול התצוגה מתבצע בשפת הסימון Extensible Application Markup ) XAML (Language, והתנהגות בשפות תכנות, כגון: #C ו- Basic.Visual הפרדה זו מאפשרת פיתוח שבו המעצבים והמפתחים יכולים לעבוד בשיתוף פעולה במודלים נפרדים. מטרת התרגיל : הצגת נתונים ממסד נתונים( Database ) למשתמש באמצעות Databinding בפרויקט מסוג WPF Client Application XAML קבצים : קובץ בשם App.xaml הכולל הגדרות גלובאליות הקשורות ליישום. קובץ XAML בשם MainWindow.xaml המכיל את הגדרות חלון היישום. קובץ CS בשם MainWindow.xaml.cs המבצע התחברות אל מסד הנתונים( Database ) ולאחר מכן מבצע כריכת נתונים( Databinding ) לפקד.ListBox קובץ MDF בשם CountriesDB.mdf המכיל טבלה בשם CountriesTable המכילה שמות של ארצות. הקבצים נמצאים בפרויקט.WPF Client Application

2 מטרת הקוד:הגדרת ה- Property ItemsSource ל- Bindingg על מנת לכרוך את הפקד עם נתונים ממסד הנתונים( Database ). ListBox <ListBox Margin="33,12,31,0" Name="listBox1" ItemsSource="Binding" Height="122" VerticalAlignment="Top" הסבר קוד: ה- Property ItemsSource מגדיר Collection על מנת לנהל את תוכן הפקד. /> מטרת הקוד:הגדרת הטבלה Countries לתוכן הכריכה( binding ) של הפקד.ListBox //Binding the data to the ListBox listbox1.datacontext = ds.tables["countries"].defaultview; הסבר קוד: ה- Property DataContext מגדיר את הנתונים הקשורים לאלמנט אשר משתתף ב-.Databinding מטרת הקוד:הגדרת נתיב הנתון לכריכה( Databinding ) וערכו ממקור הנתונים. הסבר קוד: //Setting the Country Column to DisplayMember listbox1.displaymemberpath = //Setting the value of the Country Column listbox1.selectedvaluepath =

3 ה- Property DisplayMemberPath מגדיר את נתיב הערך ממקור הנתונים בכדי לשמש תצוגה ויזואלית של האובייקט. ה- Property SelectedValuePath מגדיר נתיב לקבלת הערך SelectedValue בפקד.ListBox המתודה( method ) GetCountryList מבצעת שאילתא למסד נתונים( Database ) ולאחר מכן מבצעת כריכה( Databinding ) של הנתונים שהתקבלו אל פקד.ListBox <Application x:class="databindingexample.app" הקוד המלא קוד : App.xaml xmlns=" on" xmlns:x=" StartupUri="MainWindow.xaml"> <Application.Resources> </Application.Resources> </Application> using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Windows; קוד: App.xaml.cs namespace DataBindingExample /// <summary> /// Interaction logic for App.xaml /// </summary> public partial class App : Application

4 <Window x:class="databindingexample.mainwindow" קוד: MainWindow.xaml xmlns=" on" xmlns:x=" Title="Data Binding Example" Height="249" Width="258"> <Grid Height="189" Width="230" Background="AliceBlue"> <ListBox Margin="33,12,31,0" Name="listBox1" ItemsSource="Binding" Height="122" VerticalAlignment="Top" /> <Button Height="23" Margin="82,0,73,12" Name="btnCountry" VerticalAlignment="Bottom" Click="btnCountry_Click">Get List</Button> </Grid> </Window> קוד: MainWindow.xaml.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Data; using System.Data.SqlClient; namespace DataBindingExample

5 public partial class MainWindow : Window static DataSet ds=null; public MainWindow() InitializeComponent(); private void GetCountryList() string constr Source=.\SQLEXPRESS;AttachDbFilename=DB\CountriesDB.mdf;Integr ated Security=True;User Instance=True"; string query = "SELECT * FROM CountriesTable"; ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(query, constr); da.fill(ds, "Countries"); //Binding the data to the ListBox listbox1.datacontext = ds.tables["countries"].defaultview; //Setting the Country Column to DisplayMember listbox1.displaymemberpath = //Setting the value of the Country Column listbox1.selectedvaluepath = private void btncountry_click(object sender, RoutedEventArgs e) GetCountryList();

6 מסכים: הרצת קובץ.MainWindow.xaml לאחר לחיצה על הפקד Get List מתקבלת רשימה של ארצות ממסד הנתונים( Database ) אל הפקד. ListBox

7 מסך פרויקט: סיכום כללי: בתרגיל זה הדגמנו ביצוע כריכת נתונים( Databinding ) ב- Application WPF Client ע"י התחברות אל מסד נתונים( Database ) וכריכה( Binding ) של הנתונים אל פקד.ListBox

Chapter 14 WCF Client WPF Implementation. Screen Layout

Chapter 14 WCF Client WPF Implementation. Screen Layout Chapter 14 WCF Client WPF Implementation Screen Layout Window1.xaml

More information

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK.

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK. Start Microsoft Visual Studio. wpf5concat File New Project WPF Application, Name= wpf5concat OK. The Solution Explorer displays: Solution wpf5concat, wpf5concat, Properties, References, App.xaml, MainWindow.xaml.

More information

This tutorial has been designed for all those readers who want to learn WPF and to apply it instantaneously in different type of applications.

This tutorial has been designed for all those readers who want to learn WPF and to apply it instantaneously in different type of applications. About the Tutorial WPF stands for Windows Presentation Foundation. It is a powerful framework for building Windows applications. This tutorial explains the features that you need to understand to build

More information

Relationships in WPF Applications

Relationships in WPF Applications Chapter 15 Relationships in WPF Applications Table of Contents Chapter 15... 15-1 Relationships in WPF Applications... 15-1 One-To-Many Combo Box to List Box... 15-1 One-To-Many Relationships using Properties...

More information

Microsoft Virtual Labs. Building Windows Presentation Foundation Applications - C# - Part 1

Microsoft Virtual Labs. Building Windows Presentation Foundation Applications - C# - Part 1 Microsoft Virtual Labs Building Windows Presentation Foundation Applications - C# - Part 1 Table of Contents Building Windows Presentation Foundation Applications - C# - Part 1... 1 Exercise 1 Creating

More information

How To Create A Database In Araba

How To Create A Database In Araba create database ARABA use ARABA create table arac ( plaka varchar(15), marka varchar(15), model varchar(4)) create table musteri ( tck varchar(11), ad varchar(15), soy varchar(15)) drop table kiralama

More information

Conexión SQL Server C#

Conexión SQL Server C# Conexión SQL Server C# Form1.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;

More information

1. WPF Tutorial Page 1 of 431 wpf-tutorial.com

1. WPF Tutorial Page 1 of 431 wpf-tutorial.com 1. WPF Tutorial Page 1 of 431 1.1. About WPF 1.1.1. What is WPF? WPF, which stands for Windows Presentation Foundation, is Microsoft's latest approach to a GUI framework, used with the.net framework. But

More information

آموزش DataGrid در WPF به همراه صفحه بندي و جستجوي انتخابی. کلیک کن www.papro-co.ir

آموزش DataGrid در WPF به همراه صفحه بندي و جستجوي انتخابی. کلیک کن www.papro-co.ir آموزش DataGrid در WPF به همراه صفحه بندي و جستجوي انتخابی در پاپرو برنامه نویسی را شیرین یاد بگیرید کلیک کن www.papro-co.ir WPF DataGrid Custom Paging and Sorting This article shows how to implement custom

More information

STEP BY STEP to Build the Application 1. Start a. Open a MvvmLight (WPF4) application and name it MvvmControlChange.

STEP BY STEP to Build the Application 1. Start a. Open a MvvmLight (WPF4) application and name it MvvmControlChange. Application Description This MVVM WPF application includes a WPF Window with a contentcontrol and multiple UserControls the user can navigate between with button controls. The contentcontrols will have

More information

APPLICATION NOTE. Atmel AVR10006: XDK User Guide. Atmel Microcontrollers. Features. Description

APPLICATION NOTE. Atmel AVR10006: XDK User Guide. Atmel Microcontrollers. Features. Description APPLICATION NOTE Atmel AVR10006: XDK User Guide Atmel Microcontrollers Features Extension Developer s Kit user guide Generate and publish an Atmel Studio extension Atmel Studio IDE SDK Embedded SDK Description

More information

Body Pose Tracking and Instrumented Personal Training using Kinect. Michael Sherman Capstone Project Report for BSEE Rutgers University

Body Pose Tracking and Instrumented Personal Training using Kinect. Michael Sherman Capstone Project Report for BSEE Rutgers University Body Pose Tracking and Instrumented Personal Training using Kinect Michael Sherman Capstone Project Report for BSEE Rutgers University Table of Contents Introduction... 3 Hardware... 4 Early stages...

More information

Async startup WPF Application

Async startup WPF Application Async startup WPF Application Friday, December 18, 2015 5:39 PM This document is from following the article here: https://msdn.microsoft.com/enus/magazine/mt620013.aspx While working through the examples

More information

Introduction to C#, Visual Studio and Windows Presentation Foundation

Introduction to C#, Visual Studio and Windows Presentation Foundation Introduction to C#, Visual Studio and Windows Presentation Foundation Lecture #3: C#, Visual Studio, and WPF Joseph J. LaViola Jr. Fall 2008 Fall 2008 CAP 6938 Topics in Pen-Based User Interfaces Joseph

More information

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc.

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc. Database Communica/on in Visual Studio/C# using Web Services Hans- Pe=er Halvorsen, M.Sc. Background We will use Web Services because we assume that the the App should be used on Internet outside the Firewall).

More information

WINDOWS PRESENTATION FOUNDATION LEKTION 3

WINDOWS PRESENTATION FOUNDATION LEKTION 3 WINDOWS PRESENTATION FOUNDATION LEKTION 3 Mahmud Al Hakim mahmud@alhakim.se www.alhakim.se COPYRIGHT 2015 MAHMUD AL HAKIM WWW.WEBACADEMY.SE 1 AGENDA Introduktion till Databindning (Data Binding) Element

More information

An Introduction to the Windows Presentation Foundation with the Model-View-ViewModel

An Introduction to the Windows Presentation Foundation with the Model-View-ViewModel An Introduction to the Windows Presentation Foundation with the Model-View-ViewModel Part 1 Paul Grenyer After three wonderful years working with Java I am back in the C# arena and amazed by how things

More information

Windows Presentation Foundation Using C#

Windows Presentation Foundation Using C# Windows Presentation Foundation Using C# Student Guide Revision 4.0 Object Innovations Course 4135 Windows Presentation Foundation Using C# Rev. 4.0 Student Guide Information in this document is subject

More information

I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]);

I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]); I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]); szöveg, cím gomb ikon defaultbutton String - MessageBoxButtons.OK - MessageBoxIcon.Asterix.Error.OKCancel.Question

More information

WPF Viewer for Reporting Services 2008/2012 Getting Started

WPF Viewer for Reporting Services 2008/2012 Getting Started WPF Viewer for Reporting Services 2008/2012 Getting Started Last modified on: July 9, 2012 Table of Content Introduction... 3 Prerequisites... 3 Creating application using Microsoft SQL 2008/2008 R2 /2012

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development About the Tutorial Welcome to Windows 10 tutorial. This tutorial is designed for people who want to learn how to develop apps meant for Windows 10. After completing it, you will have a better understating

More information

Windows Presentation Foundation Tutorial 1

Windows Presentation Foundation Tutorial 1 Windows Presentation Foundation Tutorial 1 PDF: Tutorial: A http://billdotnet.com/wpf.pdf http://billdotnet.com/dotnet_lecture/dotnet_lecture.htm Introduction 1. Start Visual Studio 2008, and select a

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

Einführung in die Windows Store App Entwicklung mit C# und XAML. Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem

Einführung in die Windows Store App Entwicklung mit C# und XAML. Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem Einführung in die Windows Store App Entwicklung mit C# und XAML Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem Oktober 2013 www.softed.de Referentin Beate Lay C# Programmierung SharePoint

More information

Windows Presentation Foundation (WPF)

Windows Presentation Foundation (WPF) 50151 - Version: 4 05 July 2016 Windows Presentation Foundation (WPF) Windows Presentation Foundation (WPF) 50151 - Version: 4 5 days Course Description: This five-day instructor-led course provides students

More information

Implementing multi-user multi-touch scenarios using WPF in Windows* 8 Desktop Apps

Implementing multi-user multi-touch scenarios using WPF in Windows* 8 Desktop Apps Implementing multi-user multi-touch scenarios using WPF in Windows* 8 Desktop Apps Summary In this paper we walk through a sample application (in this case a game that quizzes people on the Periodic Table)

More information

Understanding In and Out of XAML in WPF

Understanding In and Out of XAML in WPF Understanding In and Out of XAML in WPF 1. What is XAML? Extensible Application Markup Language and pronounced zammel is a markup language used to instantiate.net objects. Although XAML is a technology

More information

Working with IronPython and WPF

Working with IronPython and WPF Working with IronPython and WPF Douglas Blank Bryn Mawr College Programming Paradigms Spring 2010 With thanks to: http://www.ironpython.info/ http://devhawk.net/ IronPython Demo with WPF >>> import clr

More information

Introduction to Windows Presentation Foundation

Introduction to Windows Presentation Foundation Page 1 of 41 2009 Microsoft Corporation. All rights reserved. Windows Presentation Foundation Windows Presentation Foundation (WPF) is a next-generation presentation system for building Windows client

More information

ADOBE READER AND ACROBAT

ADOBE READER AND ACROBAT ADOBE READER AND ACROBAT IFILTER CONFIGURATION Table of Contents Table of Contents... 1 Overview of PDF ifilter 11 for 64-bit platforms... 3 Installation... 3 Installing Adobe PDF IFilter... 3 Setting

More information

Hadoop. www.naya-college.co.il הנדיב,71 הרצליה טלפון: 073-2865544 פקס: 073-2865417 תיאור ההכשרה

Hadoop. www.naya-college.co.il הנדיב,71 הרצליה טלפון: 073-2865544 פקס: 073-2865417 תיאור ההכשרה BIG Data Expert Hadp משך המסלול: כ- 4 חודשי לימוד פעמיים בשבוע בין השעות 17:30-21:30 היקף המסלול: 155 שעות אקדמיות תיאור ההכשרה בעולם טכנולוגי ועסקי, הנתונים והמידע הם הנכס האמיתי של כל ארגון בעולם. מסלול

More information

Telerik WPF Controls Tutorial

Telerik WPF Controls Tutorial Telerik WPF Controls Tutorial Daniel R. Spalding Chapter No. 2 "Telerik Editors and How They Work" In this package, you will find: A Biography of the author of the book A preview chapter from the book,

More information

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically.

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically. My Docs Online Secure File Delivery API: C# Introduction My Docs Online has provided HIPAA-compliant Secure File Sharing and Delivery since 1999. With the most recent release of its web client and Java

More information

Windows Presentation Foundation (WPF) User Interfaces

Windows Presentation Foundation (WPF) User Interfaces Windows Presentation Foundation (WPF) User Interfaces Rob Miles Department of Computer Science 29c 08120 Programming 2 Design Style and programming As programmers we probably start of just worrying about

More information

שקיפות במדדי קיימות גלובליים והפרדוקס של ה

שקיפות במדדי קיימות גלובליים והפרדוקס של ה שקיפות במדדי קיימות גלובליים והפרדוקס של ה Green Economy אורן פרז הפקולטה למשפטים, אוניברסיטת בר אילן 2 ספטמבר 2015 Oren.perez@biu.ac.il 1 ההרצאה מבוססת על המאמר: Perez, Oren, The Green Economy Paradox:

More information

Aucune validation n a été faite sur l exemple.

Aucune validation n a été faite sur l exemple. Cet exemple illustre l utilisation du Type BLOB dans la BD. Aucune validation n a été faite sur l exemple. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;

More information

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER);

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER); Le Package CREATE OR REPLACE PACKAGE GESTIONEMPLOYES AS DECLARATION DE LA VARIABLE DE TYPE REF CURSOR DECLARATION DES PROCÉDURES ET FONCTIONS TYPE EMPRESULTAT IS REF CURSOR; PROCEDURE INSERTION(NUM IN

More information

1.Tüm Kayıtları Getirme - Arama Yapma

1.Tüm Kayıtları Getirme - Arama Yapma 1.Tüm Kayıtları Getirme - Arama Yapma using System.Data.SqlClient; namespace Uygulama1 Burs public partial class Form1 : Form public Form1() InitializeComponent(); string sorgu; private void button1_click(object

More information

Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY

Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY Development 24-HOUR TRAINER Brian Faucher WILEY Wiley Publishing, Inc. INTRODUCTION xxvii LESSON 1: HELLO, WINDOWS PHONE 7 3 Overview of Windows Phone 7 3 Silverlight Versus XNA 4 Silverlight 4 Microsoft

More information

Introduction to the BackgroundWorker Component in WPF

Introduction to the BackgroundWorker Component in WPF Introduction to the BackgroundWorker Component in WPF An overview of the BackgroundWorker component by JeremyBytes.com The Problem We ve all experienced it: the application UI that hangs. You get the dreaded

More information

Microsoft Silverlight 5: Building Rich Enterprise Dashboards Todd Snyder, Joel Eden, Ph.D. Jeff Smith, Matthew Duffield

Microsoft Silverlight 5: Building Rich Enterprise Dashboards Todd Snyder, Joel Eden, Ph.D. Jeff Smith, Matthew Duffield Microsoft Silverlight 5: Building Rich Enterprise Dashboards Todd Snyder, Joel Eden, Ph.D. Jeff Smith, Matthew Duffield Chapter No. 4 "Building a Basic Dashboard" In this package, you will find: A Biography

More information

Aplicação ASP.NET MVC 4 Usando Banco de Dados

Aplicação ASP.NET MVC 4 Usando Banco de Dados Aplicação ASP.NET MVC 4 Usando Banco de Dados Neste exemplo simples, vamos desenvolver uma aplicação ASP.NET MVC para acessar o banco de dados Northwind, que está armazenado no servidor SQL Server e, listar

More information

Tutorial: Windows Mobile Application Development. Sybase Unwired Platform 2.1 ESD #2

Tutorial: Windows Mobile Application Development. Sybase Unwired Platform 2.1 ESD #2 Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 ESD #2 DOCUMENT ID: DC01285-01-0212-01 LAST REVISED: March 2012 Copyright 2012 by Sybase, Inc. All rights reserved. This publication

More information

Developer s Guide. Tobii EyeX SDK for.net. October 27, 2014 Tobii Technology

Developer s Guide. Tobii EyeX SDK for.net. October 27, 2014 Tobii Technology Developer s Guide Tobii EyeX SDK for.net October 27, 2014 Tobii Technology The Tobii EyeX Software Development Kit (SDK) for.net contains everything you need for building games and applications using the

More information

Introduction to Visual Studio and C#

Introduction to Visual Studio and C# Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Introduction to Visual Studio and C# HANS- PETTER HALVORSEN, 2014.03.12 Faculty of Technology, Postboks

More information

Veritas Enterprise Vault. Miron Krokhmal CTO Emet IT

Veritas Enterprise Vault. Miron Krokhmal CTO Emet IT Veritas Enterprise Vault Miron Krokhmal CTO Emet IT Summary Information and Data Management Archiving Framework Product Architecture QA Thank you Information and Data Management תקשורת עסקית הוראות מסמכים

More information

A Step by Step Guide for Building an Ozeki VoIP SIP Softphone

A Step by Step Guide for Building an Ozeki VoIP SIP Softphone Lesson 3 A Step by Step Guide for Building an Ozeki VoIP SIP Softphone Abstract 2012. 01. 20. The third lesson of is a detailed step by step guide that will show you everything you need to implement for

More information

How to install and setup XLabs

How to install and setup XLabs Table of content 1 Prologue... 2 2 Introduction... 3 3 Add XLabs to project (VS2013 - Update 2)... 4 3.1 Initial installation... 4 3.2 Installing updates automatically... 5 3.3 Installing specific versions

More information

SQL injection attacks SQL injection user input SQL injection SQL Command parameters Database account. SQL injection attacks Data Code

SQL injection attacks SQL injection user input SQL injection SQL Command parameters Database account. SQL injection attacks Data Code SQL Injection Attack SQL injection attacks SQL injection user input SQL injection SQL Command parameters Database account Login page application database over-privileged account database Attacker SQL injection

More information

Data Privacy The Database Story Oded Raz, Co CEO & Co Founder of

Data Privacy The Database Story Oded Raz, Co CEO & Co Founder of Data Privacy The Database Story Oded Raz, Co CEO & Co Founder of Oracle ACE Director About Brillix Brillix is active in two line of business: Consulting services We offer our customers senior DBA consultants

More information

How To Develop A Mobile Application On Sybase Unwired Platform

How To Develop A Mobile Application On Sybase Unwired Platform Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 DOCUMENT ID: DC01285-01-0210-01 LAST REVISED: December 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication

More information

Interaction Tracker Interaction Segments

Interaction Tracker Interaction Segments Interaction Tracker Interaction Segments Technical Reference Interactive Intelligence Customer Interaction Center (CIC) 2016 R1 Last updated July 28, 2015 (See Change Log for summary of changes.) Abstract

More information

AGENDA WINDOWS PRESENTATION FOUNDATION LEKTION 4. Statusbar Hyperlänkar WebBrowser TabControl Ribbon ListBox Data Template Resource Dictionary Style

AGENDA WINDOWS PRESENTATION FOUNDATION LEKTION 4. Statusbar Hyperlänkar WebBrowser TabControl Ribbon ListBox Data Template Resource Dictionary Style WINDOWS PRESENTATION FOUNDATION LEKTION 4 Mahmud Al Hakim mahmud@alhakim.se www.alhakim.se COPYRIGHT 2015 MAHMUD AL HAKIM WWW.WEBACADEMY.SE 1 AGENDA Statusbar Hyperlänkar WebBrowser TabControl Ribbon ListBox

More information

Using Client Migrations for Load-Balancing in Video-on- Demand Systems

Using Client Migrations for Load-Balancing in Video-on- Demand Systems The Interdisciplinary Center, Herzlia Efi Arazi School of Computer Science Using Client Migrations for Load-Balancing in Video-on- Demand Systems M.Sc. Final project Submitted by Adam Oren Under the supervision

More information

5 Airport. Chapter 5: Airport 49. Right-click on Data Connections, then select Add Connection.

5 Airport. Chapter 5: Airport 49. Right-click on Data Connections, then select Add Connection. Chapter 5: Airport 49 5 Airport Most practical applications in C# require data to be stored in a database and accessed by the program. We will examine how this is done by setting up a small database of

More information

Election 2012: Real- Time Monitoring of Election Results

Election 2012: Real- Time Monitoring of Election Results Election 2012: Real- Time Monitoring of Election Results A simulation using the Syncfusion PivotGrid control. by Clay Burch and Suriya Prakasam R. Contents Introduction... 3 Ticking Pivots... 3 Background

More information

Access Data Object (cont.)

Access Data Object (cont.) ADO.NET Access Data Object (cont.) What is a Dataset? DataTable DataSet DataTable DataTable SqlDataAdapter SqlConnection OleDbDataAdapter Web server memory Physical storage SQL Server 2000 OleDbConnection

More information

Windows Presentation Foundation

Windows Presentation Foundation Windows Presentation Foundation C# Programming April 18 Windows Presentation Foundation WPF (code-named Avalon ) is the graphical subsystem of the.net 3.0 Framework It provides a new unified way to develop

More information

A PROJECT REPORT ON. SkyDrive. Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION

A PROJECT REPORT ON. SkyDrive. Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION A PROJECT REPORT ON SkyDrive Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION By UTTAM KUWAR VERMA 11004101172 GALGOTIAS INSTITUTE

More information

special excerpt 2 Programming Complete book available Fall 2010 Windows Phone 7 Charles Petzold

special excerpt 2 Programming Complete book available Fall 2010 Windows Phone 7 Charles Petzold special excerpt 2 Programming PREVIEW CONTENT Complete book available Fall 2010 Windows Phone 7 Charles Petzold PREVIEW CONTENT This excerpt provides early content from a book currently in development,

More information

70-511. Microsoft Windows Apps Dev w/microsoft.net Framework 4. http://www.officialcerts.com

70-511. Microsoft Windows Apps Dev w/microsoft.net Framework 4. http://www.officialcerts.com http://www.officialcerts.com 70-511 Microsoft Windows Apps Dev w/microsoft.net Framework 4 OfficialCerts.com is a reputable IT certification examination guide, study guides and audio exam provider. We

More information

Mapping to the Windows Presentation Framework

Mapping to the Windows Presentation Framework Mapping to the Windows Presentation Framework This section maps the main IFML concepts to the.net Windows Presentation Framework (WFP). Windows Presentation Framework (WPF) is a part of.net Framework by

More information

Data Binding with WPF: Binding to XML

Data Binding with WPF: Binding to XML Data Binding with WPF: Binding to XML Excerpted from WPF in Action with Visual Studio 2008 EARLY ACCESS EDITION Arlen Feldman and Maxx Daymon MEAP Release: July 2007 Softbound print: October 2008 (est.),

More information

Note: This App is under development and available for testing on request. Note: This App is under development and available for testing on request. Note: This App is under development and available for

More information

Capturx for SharePoint 2.0: Notification Workflows

Capturx for SharePoint 2.0: Notification Workflows Capturx for SharePoint 2.0: Notification Workflows 1. Introduction The Capturx for SharePoint Notification Workflow enables customers to be notified whenever items are created or modified on a Capturx

More information

如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案

如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案 如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案 本 文 件 說 明 如 何 在 C#.Net 程 式 中 引 入 ICPDAS I/O Card 的 DLL 檔 案 [ 下 載 安 裝 DLL 驅 動 程 式 與 VC 範 例 程 式 ] 多 年 來, ICPDAS 完 整 的 提 供 了 全 系 列 PCI 與 ISA BUS I/O Card 在 Windows

More information

Xamarin.Forms. Hands On

Xamarin.Forms. Hands On Xamarin.Forms Hands On Hands- On: Xamarin Forms Ziele Kennenlernen von Xamarin.Forms, wich:gste Layouts und Views UI aus Code mit Data Binding Erweitern von Forms Elementen mit Na:ve Custom Renderer UI

More information

USER GUIDE Appointment Manager

USER GUIDE Appointment Manager 2011 USER GUIDE Appointment Manager 0 Suppose that you need to create an appointment manager for your business. You have a receptionist in the front office and salesmen ready to service customers. Whenever

More information

Using ilove SharePoint Web Services Workflow Action

Using ilove SharePoint Web Services Workflow Action Using ilove SharePoint Web Services Workflow Action This guide describes the steps to create a workflow that will add some information to Contacts in CRM. As an example, we will use demonstration site

More information

Visual C# 2012 Programming

Visual C# 2012 Programming Visual C# 2012 Programming Karli Watson Jacob Vibe Hammer John D. Reid Morgan Skinner Daniel Kemper Christian Nagel WILEY John Wiley & Sons, Inc. INTRODUCTION xxxi CHAPTER 1: INTRODUCING C# 3 What Is the.net

More information

Implementing a WCF Service in the Real World

Implementing a WCF Service in the Real World Implementing a WCF Service in the Real World In the previous chapter, we created a basic WCF service. The WCF service we created, HelloWorldService, has only one method, called GetMessage. Because this

More information

Introduction to Unit Testing ---

Introduction to Unit Testing --- Introduction to Unit Testing --- Overview In this lab, you ll learn about unit testing. Unit tests gives you an efficient way to look for logic errors in the methods of your classes. Unit testing has the

More information

Implementation of the AutoComplete Feature of the Textbox Based on Ajax and Web Service

Implementation of the AutoComplete Feature of the Textbox Based on Ajax and Web Service JOURNAL OF COMPUTERS, VOL. 8, NO. 9, SEPTEMBER 2013 2197 Implementation of the AutoComplete Feature of the Textbox Based on Ajax and Web Service Zhiqiang Yao Dept. of Computer Science, North China Institute

More information

ASP.NET Dynamic Data

ASP.NET Dynamic Data 30 ASP.NET Dynamic Data WHAT S IN THIS CHAPTER? Building an ASP.NET Dynamic Data application Using dynamic data routes Handling your application s display ASP.NET offers a feature that enables you to dynamically

More information

İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME

İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME Asp.Net kodları

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

listboxgaatmee.dragdrop += new DragEventHandler(listBox_DragDrop); ListBox from = (ListBox)e.Data.GetData(typeof(ListBox));

listboxgaatmee.dragdrop += new DragEventHandler(listBox_DragDrop); ListBox from = (ListBox)e.Data.GetData(typeof(ListBox)); 1 Module 1 1.1 DragDrop listboxgaatmee.dragenter += new DragEventHandler(control_DragEnter); e.effect = DragDropEffects.Move; //noodzakelijk, anders geen drop mogelijk (retarded I knows) listboxgaatmee.dragdrop

More information

OxyPlot Documentation

OxyPlot Documentation OxyPlot Documentation Release 2015.1 OxyPlot Contributors April 19, 2016 Contents 1 Content 3 1.1 Introduction............................................... 3 1.2 Getting started..............................................

More information

Save Actions User Guide

Save Actions User Guide Microsoft Dynamics CRM for Sitecore 6.6-8.0 Save Actions User Guide Rev: 2015-04-15 Microsoft Dynamics CRM for Sitecore 6.6-8.0 Save Actions User Guide A practical guide to using Microsoft Dynamics CRM

More information

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB)

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Course Number: 4995 Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview

More information

Real-World ASP.NET: Building a Content Management System

Real-World ASP.NET: Building a Content Management System Apress Books for Professionals by Professionals Real-World ASP.NET: Building a Content Management System by Stephen R.G. Fraser ISBN # 1-59059-024-4 Copyright 2001 Apress, L.P., 2460 Ninth St., Suite 219,

More information

1. WPF Tutorial Page 1 of 359 wpf-tutorial.com

1. WPF Tutorial Page 1 of 359 wpf-tutorial.com 1. WPF Tutorial Page 1 of 359 1.1. About WPF 1.1.1. What is WPF? WPF, which stands for Windows Presentation Foundation, is Microsoft's latest approach to a GUI framework, used with the.net framework. But

More information

Online Classification of VoD and Live Video Streaming Applications

Online Classification of VoD and Live Video Streaming Applications The Interdisciplinary Center Herzliya Efi Arazi School of Computer Science Online Classification of VoD and Live Video Streaming Applications M.Sc. Dissertation Submitted in Partial Fulfillment of the

More information

Właściwość Items. ... typu ItemCollection. content property. Właściwość tylko do odczytu. Każdy element może być dowolnym obiektem

Właściwość Items. ... typu ItemCollection. content property. Właściwość tylko do odczytu. Każdy element może być dowolnym obiektem Items Controls Właściwość Items... typu ItemCollection content property Właściwość tylko do odczytu Każdy element może być dowolnym obiektem... i jest wyświetlany tak jak w ContentControl Elementy typu

More information

Production Floor Optimizations Using Dynamic Modeling and Data Mining

Production Floor Optimizations Using Dynamic Modeling and Data Mining The Interdisciplinary Center, Herzliya Efi Arazi School of Computer Science Production Floor Optimizations Using Dynamic Modeling and Data Mining M.Sc dissertation Submitted by Under the supervision of

More information

Important New Concepts in WPF

Important New Concepts in WPF CHAPTER 3 Important New Concepts in WPF IN THIS CHAPTER. Logical and Visual Trees. Dependency Properties. Routed Events. Commands. A Tour of the Class Hierarchy To finish Part I of this book, and before

More information

לחברת טבע תעשיות פרמצבטיות לאתר בפתח תקווה. דרוש/ה Product Projects Manager

לחברת טבע תעשיות פרמצבטיות לאתר בפתח תקווה. דרוש/ה Product Projects Manager לחברת טבע תעשיות פרמצבטיות לאתר בפתח תקווה דרוש/ה Product Projects Manager לתפקיד הכולל: תכנון השקות מוצרים ברמה אופרטיבית, החל משלב הפיתוח ועד ליציאה להשקה בשוק תכנון וניהול מערך שרשרת האספקה ובניית תכנית

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

SharePoint Integration

SharePoint Integration Microsoft Dynamics CRM 2011 supports SharePoint 2007/2010 integration to improve document management in CRM. The previous versions of CRM didn't have a solid out-of-the-box solution for document management

More information

Building Solutions using the 2007 Office System Workflow Infrastructure

Building Solutions using the 2007 Office System Workflow Infrastructure Building Solutions using the 2007 Office System Workflow Infrastructure Rames Gantanant ramesg@ineta.org Microsoft, Regional Director Microsoft, MVP Puumsoft, Director of Business Solutions Vision for

More information

Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation

Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation SharpSim Tutorials Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation Ali Emre Varol, Arda Ceylan, Murat

More information

v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com

v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com Table of Contents Table of Contents................................................................ ii 1. Overview 2. Workflow...................................................................

More information

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB A SharePoint Developer Introduction Hands-On Lab Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB This document is provided as-is. Information and views expressed in this document,

More information

VB.NET - DATABASE ACCESS

VB.NET - DATABASE ACCESS VB.NET - DATABASE ACCESS http://www.tutorialspoint.com/vb.net/vb.net_database_access.htm Copyright tutorialspoint.com Applications communicate with a database, firstly, to retrieve the data stored there

More information

Performance and Usability Improvements for Massive Data Grids using Silverlight

Performance and Usability Improvements for Massive Data Grids using Silverlight 5DV097 - Degree project in Computing Science Engineering, 30 ECTS-credits Umeå university, Sweden Performance and Usability Improvements for Massive Data Grids using Silverlight Report 2011-02-14 c06ahm@cs.umu.se

More information

Software Engineering 1 EEL5881 Spring 2009. Homework - 2

Software Engineering 1 EEL5881 Spring 2009. Homework - 2 Software Engineering 1 EEL5881 Spring 2009 Homework - 2 Submitted by Meenakshi Lakshmikanthan 04/01/2009 PROBLEM STATEMENT: Implement the classes as shown in the following diagram. You can use any programming

More information

C# Datenbank-Programmierung

C# Datenbank-Programmierung C# Datenbank-Programmierung Usings... 2 Verbindung herstellen SQL und Acces... 2 Verbindung schliessen SQL und Acces... 3 File open Dialog... 3 Lehar einfügen... 3 Lehar löschen... 4 Radio Button SQL &

More information

Windows Touch 程 式 開 發 入 門 許 煜 坤 台 灣 微 軟 研 究 開 發 處 2010/1/20

Windows Touch 程 式 開 發 入 門 許 煜 坤 台 灣 微 軟 研 究 開 發 處 2010/1/20 Windows Touch 程 式 開 發 入 門 許 煜 坤 台 灣 微 軟 研 究 開 發 處 2010/1/20 Agendas Good, Better, Best model Platforms details Native Win32 APIs MS Windows SDK 7.0 Windows 7 Multi-Touch.Net Interop Sample Library VS2008

More information